home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / vc152.zip / VCM.BAT < prev    next >
DOS Batch File  |  1992-06-16  |  220b  |  7 lines

  1. @echo off
  2. rem For example,
  3. rem    VCM C:\OLD\ *.C
  4. rem will compare all the .C files in the current directory with the .C files
  5. rem with matching file names in the C:\OLD directory.
  6. for %%f in (%2) do vcomp %1 %%f
  7.